home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / mc51bugs.zip / Q32314 < prev    next >
Text File  |  1988-07-21  |  998b  |  50 lines

  1. Q32314 Internal Compiler Error: pgoMD.c 1.120, Line 1467
  2. C Compiler
  3. 5.10   | 5.10
  4. MS-DOS | OS/2
  5.  
  6. Summary:
  7.    When the code below is compiled using the default options, it
  8. generates the following error:
  9.  
  10.    fatal error C1001: Internal Compiler Error
  11.    (compiler file '@(#)pgoMD.c:1.120', line 1467)
  12.      Contact Microsoft Technical Support
  13.  
  14.    Microsoft has confirmed this to be a problem in Version 5.10 of the
  15. C compiler. We are researching this problem and will post new
  16. information as it becomes available.
  17.  
  18. More Information:
  19.    The following code demonstrates the problem:
  20.  
  21. void main(void);
  22.  
  23. void main ()
  24. {
  25. }
  26.  
  27. typedef char strtype[30];
  28.  
  29. typedef struct {
  30.     int any_var;
  31.     int any_other_var;
  32.     strtype any_str;
  33.     } recordtype;
  34.  
  35. static void any_proc(recordtype *any_rec);
  36.  
  37. static void any_proc(
  38.     recordtype *any_rec
  39. )
  40. {
  41.    int any_local_var;
  42.  
  43.    (any_local_var,*any_rec).any_var = 0;
  44. }
  45.  
  46.  
  47.  
  48. Keywords:  buglist5.10
  49. Updated  88/07/21 03:19
  50.